filename flower url 'https://webpages.uidaho.edu/~renaes/Data/iris.csv'; data iris; infile flower dsd missover firstobs=2; input s_length s_width p_length p_width species$; * could insert LABEL statement for variable names; run; proc print data=iris; run;